home *** CD-ROM | disk | FTP | other *** search
- /* read the list of midi files in the file ./mids/index */
-
- char midifiles[20][32];
-
- int n_midi;
-
- read_midis()
- {
- FILE *handle;
- char buffer[32];
- char *ret;
- if(exists("./mids/index"))
- {
- n_midi=0;
- handle = fopen("./mids/index","rt");
- while(fgets(buffer,32,handle) && n_midi<20)
- {
- sscanf(buffer,"%s",midifiles[n_midi]);
- printf("%s\n",midifiles[n_midi]);
- n_midi++;
- }
- }
- }
-
-